home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / laptop-mode-tools / module-helpers / lm-polling-daemon next >
Encoding:
Text File  |  2012-05-20  |  420 b   |  18 lines

  1. #!/bin/sh
  2. #
  3. # This is the laptop mode tools polling daemon. It is used by the module
  4. # battery-level-polling to periodically let laptop mode tools run and check
  5. # the battery levels.
  6.  
  7.  
  8. # Poll every 2.5 minutes. That ought to give a good balance between
  9. # polling too often (which costs power) and polling too little (which
  10. # risks data loss).
  11. INTERVAL=150
  12.  
  13. while :; do
  14.     sleep $INTERVAL
  15.  
  16.     /usr/sbin/laptop_mode auto
  17. done
  18.